+2004-12-06 Matthias Clasen <mclasen@redhat.com>
+
+ * modules/input/gtkimcontextime.c: Prevent double commits,
+ don't commit when Ctrl is present. (#160376, Kazuki IWAMOTO)
+
2004-12-06 Hans Breuer <hans@breuer.org>
* gtk/gtkcolorsel.c (key_press): Implement keynav for the color
+2004-12-06 Matthias Clasen <mclasen@redhat.com>
+
+ * modules/input/gtkimcontextime.c: Prevent double commits,
+ don't commit when Ctrl is present. (#160376, Kazuki IWAMOTO)
+
2004-12-06 Hans Breuer <hans@breuer.org>
* gtk/gtkcolorsel.c (key_press): Implement keynav for the color
+2004-12-06 Matthias Clasen <mclasen@redhat.com>
+
+ * modules/input/gtkimcontextime.c: Prevent double commits,
+ don't commit when Ctrl is present. (#160376, Kazuki IWAMOTO)
+
2004-12-06 Hans Breuer <hans@breuer.org>
* gtk/gtkcolorsel.c (key_press): Implement keynav for the color
+2004-12-06 Matthias Clasen <mclasen@redhat.com>
+
+ * modules/input/gtkimcontextime.c: Prevent double commits,
+ don't commit when Ctrl is present. (#160376, Kazuki IWAMOTO)
+
2004-12-06 Hans Breuer <hans@breuer.org>
* gtk/gtkcolorsel.c (key_press): Implement keynav for the color
if (event->type == GDK_KEY_RELEASE)
return FALSE;
+ if (event->state & GDK_CONTROL_MASK)
+ return FALSE;
+
context_ime = GTK_IM_CONTEXT_IME (context);
if (!context_ime->focus)
{
g_signal_emit_by_name (context, "commit", utf8str);
g_free (utf8str);
+ retval = TRUE;
}
}